home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / dev / mui / bcc_src.lha / Parser / LibBase.h < prev    next >
C/C++ Source or Header  |  1997-01-08  |  413b  |  21 lines

  1. #ifndef LIBBASE_H
  2. #define LIBBASE_H
  3.  
  4. #include <exec/libraries.h>
  5.  
  6. /*
  7.    Dies ist die Basisstruktur für die neue Bibliothek.
  8.    
  9.    Das erste Element ist immer ein struct Library, dann folgen die öffentlich
  10.    zugänglichen Elemente. Private Elemente der Bibliothek sollte man in
  11.    normalen Variablen deklarieren, nicht in dieser Struktur.
  12. */
  13.  
  14. struct LibBase {
  15.     struct Library base;
  16.     int last_result;
  17.     
  18. };
  19.  
  20. #endif
  21.